rank | frequency | n-gram |
---|---|---|
1 | 13031 | -s |
2 | 8510 | -e |
3 | 6099 | -n |
4 | 5561 | -d |
5 | 4898 | -y |
rank | frequency | n-gram |
---|---|---|
1 | 3422 | -ng |
2 | 3400 | -ed |
3 | 2742 | -on |
4 | 2655 | -er |
5 | 2624 | -es |
rank | frequency | n-gram |
---|---|---|
1 | 3202 | -ing |
2 | 1555 | -ion |
3 | 963 | -ers |
4 | 806 | -ted |
5 | 768 | -ent |
rank | frequency | n-gram |
---|---|---|
1 | 1202 | -tion |
2 | 618 | -ting |
3 | 430 | -ment |
4 | 390 | -ions |
5 | 313 | -ring |
rank | frequency | n-gram |
---|---|---|
1 | 786 | -ation |
2 | 306 | -tions |
3 | 176 | -ating |
4 | 174 | -ction |
5 | 144 | -ional |
The tables show the most frequent letter-N-grams at the ending of words for N=1…5. Everything runs in parallel to 2.2.5 Most frequent word beginnings. The aim is suffix detection instead of affix detection.
For N=3:
SELECT @pos:=(@pos+1), xx.* from (SELECT @pos:=0) r, (select count(*) as cnt ,concat("-", right(word,3)) FROM words WHERE w_id>100 group by right(word,3) order by cnt desc) xx limit 5;
2.2.5 Most frequent word beginnings